home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / stdwin / Gen / wsetclip.c < prev    next >
Text File  |  1995-12-21  |  249b  |  21 lines

  1. /* Simplified Cut Buffer Interface */
  2.  
  3. #include "stdwin.h"
  4. #include "tools.h"
  5.  
  6. void
  7. wsetclip(data, len)
  8.     char *data;
  9.     int len;
  10. {
  11.     wrotatecutbuffers(1);
  12.     wsetcutbuffer(0, data, len);
  13. }
  14.  
  15. char *
  16. wgetclip()
  17. {
  18.     int len;
  19.     return wgetcutbuffer(0, &len);
  20. }
  21.